home *** CD-ROM | disk | FTP | other *** search
/ QuickTime VR Showcase / QuickTime VR Showcase.iso / 3rd Parties / Software / Apple / AMT 2.1 New Features Demo / SOURCES / oQuickTime_1_6.k < prev    next >
Encoding:
Text File  |  1996-12-21  |  15.4 KB  |  751 lines  |  [TEXT/MPS ]

  1. object oQuickTime_1_6 is cDefaultContainer
  2. with
  3.     Binder is oBinder;
  4.     Label is -1;
  5.     Items is [
  6.         oKeyboard_Volume__6_30,
  7.         oClick_Sound__Up__6_2,
  8.         oClick_Sound__down__6_3,
  9.         oQT_BCK1_PIC_6_15,
  10.         oArrow_Right_Yellow_Highligh_6_4,
  11.         oArrow_Left_Yellow_Highlight_6_5,
  12.         oExit_Yellow_Highlight_6_6,
  13.         oExplain_Yellow_Highlight_6_23,
  14.         oMenu_Yellow_Highlight_6_8,
  15.         oArrow_Left_Inverse_6_9,
  16.         oArrow_Right_Inverse_6_10,
  17.         oExit_Inverse_6_11,
  18.         oExplain_Inverse_6_12,
  19.         oMenu_Inverse_6_13,
  20.         oQT_MOTO_MOV_6_16,
  21.         oQT_FINI_PIC_6_17,
  22.         oQT_LG1_PIC_6_18,
  23.         oQT_LG2_PIC_6_19,
  24.         oQT_LG3_PIC_6_20,
  25.         oQT_STRT_PIC_6_21,
  26.         oQT_TNL_PIC_6_22,
  27.         oQT_HLP1_PIC_6_24
  28.     ];
  29. end;
  30.  
  31.  
  32. object oKeyboard_Volume__6_30 is cKeyboardHandler
  33. with
  34.     Behavior is cDefaultBehavior
  35.     has
  36.         KeyDown(theTarget, theKey)
  37.         use
  38.             KeyMatch;
  39.             
  40.             do
  41.                 KeyMatch := theKey = '-';
  42.                 if KeyMatch then
  43.                     theTarget.DoDefaultMethod := false;
  44.                 
  45.                     oSoundVolume.StepIndexBy(-1);
  46.                 end;
  47.                 KeyMatch := theKey = '=';
  48.                 if KeyMatch then
  49.                     theTarget.DoDefaultMethod := false;
  50.                 
  51.                     oSoundVolume.StepIndexBy(1);
  52.                 end;
  53.                 KeyMatch := theKey = '+';
  54.                 if KeyMatch then
  55.                     theTarget.DoDefaultMethod := false;
  56.                 
  57.                     oSoundVolume.StepIndexBy(1);
  58.                 end;
  59.             end;
  60.         
  61.     with
  62.         Enabled is true; Shown is false; 
  63.         X is 30; Y is 24; Width is 0; Height is 0;
  64.     end;
  65. end;
  66.  
  67.  
  68. object oClick_Sound__Up__6_2 is cSoundHandler
  69. with
  70.     Supplier is oS3_2clk_WAV;
  71.     Behavior is cDefaultBehavior
  72.     has
  73.     with
  74.         Enabled is true; Shown is true; 
  75.         X is 247; Y is 128; Width is 32; Height is 24;
  76.     end;
  77. end;
  78.  
  79.  
  80. object oClick_Sound__down__6_3 is cSoundHandler
  81. with
  82.     Supplier is oS3_clk_WAV;
  83.     Behavior is cDefaultBehavior
  84.     has
  85.     with
  86.         Enabled is true; Shown is true; 
  87.         X is 304; Y is 228; Width is 32; Height is 24;
  88.     end;
  89. end;
  90.  
  91.  
  92. object oQT_BCK1_PIC_6_15 is cPictureHandler
  93. with
  94.     Duration is -1;
  95.     Supplier is oQT_BCK1_PIC;
  96.     Behavior is cDefaultBehavior
  97.     has
  98.     with
  99.         Enabled is false; Shown is true; 
  100.         X is 0; Y is 0; Width is 640; Height is 480;
  101.     end;
  102. end;
  103.  
  104.  
  105. object oArrow_Right_Yellow_Highligh_6_4 is cPictureHandler
  106. with
  107.     Duration is -1;
  108.     Supplier is oS2_ALYH_PIC;
  109.     Behavior is cDefaultBehavior
  110.     has
  111.         Offscreen(theTarget)
  112.             do
  113.                 theTarget.Show(false);
  114.             end;
  115.         
  116.         MouseEnter(theTarget, theX, theY)
  117.             do
  118.                 theTarget.Show(true);
  119.             end;
  120.         
  121.         MouseLeave(theTarget, theX, theY)
  122.             do
  123.                 theTarget.Show(false);
  124.             end;
  125.         
  126.         MouseDown(theTarget, theX, theY)
  127.             do
  128.                 theTarget.Show(false);
  129.                 oArrow_Right_Inverse_6_10.Show(true);
  130.                 -- Turn off the spining cursor, if there is one
  131.                 if oBinder.MouseSpin<>void then
  132.                     if oBinder.MouseSpin.IsRunning() then
  133.                         oBinder.MouseSpin.Stop();
  134.                     end;
  135.                     oBinder.MouseSpin := void;
  136.                 end;
  137.                 theTarget.Container.OverrideCursor := true;
  138.                 oBinder.MouseSpin := oHandSpin;
  139.                 if (oBinder.MouseSpin @ 1).Data=void then
  140.                     oBinder.MouseSpin.EachUp(Load);
  141.                 end;
  142.                 if not oBinder.MouseSpin.IsRunning() then
  143.                     oBinder.MouseSpin.Start();
  144.                 end;
  145.                 oBinder.Refresh();
  146.                 oClick_Sound__down__6_3.Run(true);
  147.             end;
  148.         
  149.         MouseUp(theTarget, theX, theY)
  150.             do
  151.                 theTarget.Show(true);
  152.                 oArrow_Right_Inverse_6_10.Show(false);
  153.                 -- Turn off the spining cursor, if there is one
  154.                 if oBinder.MouseSpin<>void then
  155.                     if oBinder.MouseSpin.IsRunning() then
  156.                         oBinder.MouseSpin.Stop();
  157.                     end;
  158.                     oBinder.MouseSpin := void;
  159.                 end;
  160.                 theTarget.Container.OverrideCursor := false;
  161.                 oBinder.Refresh();
  162.                 oClick_Sound__Up__6_2.Run(true);
  163.                 oBinder.Goto(oQuickTime_2_7);
  164.                 oBinder.SetTransition(oVerticalComb, 30);
  165.             end;
  166.         
  167.     with
  168.         Enabled is true; Shown is true; 
  169.         X is 473; Y is 426; Width is 55; Height is 54;
  170.     end;
  171. end;
  172.  
  173.  
  174. object oArrow_Left_Yellow_Highlight_6_5 is cPictureHandler
  175. with
  176.     Duration is -1;
  177.     Supplier is oS2_ARYH_PIC;
  178.     Behavior is cDefaultBehavior
  179.     has
  180.         Offscreen(theTarget)
  181.             do
  182.                 theTarget.Show(false);
  183.             end;
  184.         
  185.         MouseEnter(theTarget, theX, theY)
  186.             do
  187.                 theTarget.Show(true);
  188.             end;
  189.         
  190.         MouseLeave(theTarget, theX, theY)
  191.             do
  192.                 theTarget.Show(false);
  193.             end;
  194.         
  195.         MouseDown(theTarget, theX, theY)
  196.             do
  197.                 theTarget.Show(false);
  198.                 oArrow_Left_Inverse_6_9.Show(true);
  199.                 -- Turn off the spining cursor, if there is one
  200.                 if oBinder.MouseSpin<>void then
  201.                     if oBinder.MouseSpin.IsRunning() then
  202.                         oBinder.MouseSpin.Stop();
  203.                     end;
  204.                     oBinder.MouseSpin := void;
  205.                 end;
  206.                 theTarget.Container.OverrideCursor := true;
  207.                 oBinder.MouseSpin := oHandSpin;
  208.                 if (oBinder.MouseSpin @ 1).Data=void then
  209.                     oBinder.MouseSpin.EachUp(Load);
  210.                 end;
  211.                 if not oBinder.MouseSpin.IsRunning() then
  212.                     oBinder.MouseSpin.Start();
  213.                 end;
  214.                 oBinder.Refresh();
  215.                 oClick_Sound__down__6_3.Run(true);
  216.             end;
  217.         
  218.         MouseUp(theTarget, theX, theY)
  219.             do
  220.                 theTarget.Show(true);
  221.                 oArrow_Left_Inverse_6_9.Show(false);
  222.                 -- Turn off the spining cursor, if there is one
  223.                 if oBinder.MouseSpin<>void then
  224.                     if oBinder.MouseSpin.IsRunning() then
  225.                         oBinder.MouseSpin.Stop();
  226.                     end;
  227.                     oBinder.MouseSpin := void;
  228.                 end;
  229.                 theTarget.Container.OverrideCursor := false;
  230.                 oBinder.Refresh();
  231.                 oClick_Sound__Up__6_2.Run(true);
  232.                 oBinder.Goto(oMain_Menu_1);
  233.                 oBinder.SetTransition(oVerticalComb, 30);
  234.             end;
  235.         
  236.     with
  237.         Enabled is true; Shown is true; 
  238.         X is 377; Y is 426; Width is 60; Height is 54;
  239.     end;
  240. end;
  241.  
  242.  
  243. object oExit_Yellow_Highlight_6_6 is cPictureHandler
  244. with
  245.     Duration is -1;
  246.     Supplier is oS2_ETYH_PIC;
  247.     Behavior is cDefaultBehavior
  248.     has
  249.         Offscreen(theTarget)
  250.             do
  251.                 theTarget.Show(false);
  252.             end;
  253.         
  254.         MouseEnter(theTarget, theX, theY)
  255.             do
  256.                 theTarget.Show(true);
  257.             end;
  258.         
  259.         MouseLeave(theTarget, theX, theY)
  260.             do
  261.                 theTarget.Show(false);
  262.             end;
  263.         
  264.         MouseDown(theTarget, theX, theY)
  265.             do
  266.                 theTarget.Show(false);
  267.                 oExit_Inverse_6_11.Show(true);
  268.                 -- Turn off the spining cursor, if there is one
  269.                 if oBinder.MouseSpin<>void then
  270.                     if oBinder.MouseSpin.IsRunning() then
  271.                         oBinder.MouseSpin.Stop();
  272.                     end;
  273.                     oBinder.MouseSpin := void;
  274.                 end;
  275.                 theTarget.Container.OverrideCursor := true;
  276.                 oBinder.MouseSpin := oHandSpin;
  277.                 if (oBinder.MouseSpin @ 1).Data=void then
  278.                     oBinder.MouseSpin.EachUp(Load);
  279.                 end;
  280.                 if not oBinder.MouseSpin.IsRunning() then
  281.                     oBinder.MouseSpin.Start();
  282.                 end;
  283.                 oBinder.Refresh();
  284.                 oClick_Sound__down__6_3.Run(true);
  285.             end;
  286.         
  287.         MouseUp(theTarget, theX, theY)
  288.             do
  289.                 theTarget.Show(true);
  290.                 oExit_Inverse_6_11.Show(false);
  291.                 -- Turn off the spining cursor, if there is one
  292.                 if oBinder.MouseSpin<>void then
  293.                     if oBinder.MouseSpin.IsRunning() then
  294.                         oBinder.MouseSpin.Stop();
  295.                     end;
  296.                     oBinder.MouseSpin := void;
  297.                 end;
  298.                 theTarget.Container.OverrideCursor := false;
  299.                 oBinder.Refresh();
  300.                 oClick_Sound__Up__6_2.Run(true);
  301.                 oBinder.Quit();
  302.             end;
  303.         
  304.     with
  305.         Enabled is true; Shown is true; 
  306.         X is 528; Y is 426; Width is 111; Height is 54;
  307.     end;
  308. end;
  309.  
  310.  
  311. object oExplain_Yellow_Highlight_6_23 is cPictureHandler
  312. with
  313.     Duration is -1;
  314.     Supplier is oS2_EXYH_PIC;
  315.     Behavior is cDefaultBehavior
  316.     has
  317.         Offscreen(theTarget)
  318.             do
  319.                 theTarget.Show(false);
  320.             end;
  321.         
  322.         MouseEnter(theTarget, theX, theY)
  323.             do
  324.                 theTarget.Show(true);
  325.                 -- Turn off the spining cursor, if there is one
  326.                 if oBinder.MouseSpin<>void then
  327.                     if oBinder.MouseSpin.IsRunning() then
  328.                         oBinder.MouseSpin.Stop();
  329.                     end;
  330.                     oBinder.MouseSpin := void;
  331.                 end;
  332.                 theTarget.Container.OverrideCursor := true;
  333.                 if oQueryCursor=void then
  334.                     oQueryCursor.Load();
  335.                 end;
  336.                 oQueryCursor.Set();
  337.             end;
  338.         
  339.         MouseLeave(theTarget, theX, theY)
  340.             do
  341.                 theTarget.Show(false);
  342.                 -- Turn off the spining cursor, if there is one
  343.                 if oBinder.MouseSpin<>void then
  344.                     if oBinder.MouseSpin.IsRunning() then
  345.                         oBinder.MouseSpin.Stop();
  346.                     end;
  347.                     oBinder.MouseSpin := void;
  348.                 end;
  349.                 theTarget.Container.OverrideCursor := false;
  350.             end;
  351.         
  352.         MouseDown(theTarget, theX, theY)
  353.             do
  354.                 theTarget.Show(false);
  355.                 oExplain_Inverse_6_12.Show(true);
  356.                 oBinder.Refresh();
  357.                 oClick_Sound__down__6_3.Run(true);
  358.                 oQT_HLP1_PIC_6_24.Show(not oQT_HLP1_PIC_6_24.IsShown());
  359.                 oBinder.StopAll();
  360.                 oQT_MOTO_MOV_6_16.Enable(not oQT_MOTO_MOV_6_16.IsEnabled());
  361.                 oQT_FINI_PIC_6_17.Enable(not oQT_FINI_PIC_6_17.IsEnabled());
  362.                 oQT_LG1_PIC_6_18.Enable(not oQT_LG1_PIC_6_18.IsEnabled());
  363.                 oQT_LG2_PIC_6_19.Enable(not oQT_LG2_PIC_6_19.IsEnabled());
  364.                 oQT_LG3_PIC_6_20.Enable(not oQT_LG3_PIC_6_20.IsEnabled());
  365.                 oQT_STRT_PIC_6_21.Enable(not oQT_STRT_PIC_6_21.IsEnabled());
  366.             end;
  367.         
  368.         MouseUp(theTarget, theX, theY)
  369.             do
  370.                 theTarget.Show(true);
  371.                 oExplain_Inverse_6_12.Show(false);
  372.                 oBinder.Refresh();
  373.                 oClick_Sound__Up__6_2.Run(true);
  374.             end;
  375.         
  376.     with
  377.         Enabled is true; Shown is true; 
  378.         X is 289; Y is 427; Width is 87; Height is 53;
  379.     end;
  380. end;
  381.  
  382.  
  383. object oMenu_Yellow_Highlight_6_8 is cPictureHandler
  384. with
  385.     Duration is -1;
  386.     Supplier is oS2_MNUYH_PIC;
  387.     Behavior is cDefaultBehavior
  388.     has
  389.         Offscreen(theTarget)
  390.             do
  391.                 theTarget.Show(false);
  392.             end;
  393.         
  394.         MouseEnter(theTarget, theX, theY)
  395.             do
  396.                 theTarget.Show(true);
  397.             end;
  398.         
  399.         MouseLeave(theTarget, theX, theY)
  400.             do
  401.                 theTarget.Show(false);
  402.             end;
  403.         
  404.         MouseDown(theTarget, theX, theY)
  405.             do
  406.                 theTarget.Show(false);
  407.                 oMenu_Inverse_6_13.Show(true);
  408.                 -- Turn off the spining cursor, if there is one
  409.                 if oBinder.MouseSpin<>void then
  410.                     if oBinder.MouseSpin.IsRunning() then
  411.                         oBinder.MouseSpin.Stop();
  412.                     end;
  413.                     oBinder.MouseSpin := void;
  414.                 end;
  415.                 theTarget.Container.OverrideCursor := true;
  416.                 oBinder.MouseSpin := oHandSpin;
  417.                 if (oBinder.MouseSpin @ 1).Data=void then
  418.                     oBinder.MouseSpin.EachUp(Load);
  419.                 end;
  420.                 if not oBinder.MouseSpin.IsRunning() then
  421.                     oBinder.MouseSpin.Start();
  422.                 end;
  423.                 oBinder.Refresh();
  424.                 oClick_Sound__down__6_3.Run(true);
  425.             end;
  426.         
  427.         MouseUp(theTarget, theX, theY)
  428.             do
  429.                 theTarget.Show(true);
  430.                 oMenu_Inverse_6_13.Show(false);
  431.                 -- Turn off the spining cursor, if there is one
  432.                 if oBinder.MouseSpin<>void then
  433.                     if oBinder.MouseSpin.IsRunning() then
  434.                         oBinder.MouseSpin.Stop();
  435.                     end;
  436.                     oBinder.MouseSpin := void;
  437.                 end;
  438.                 theTarget.Container.OverrideCursor := false;
  439.                 oBinder.Refresh();
  440.                 oClick_Sound__Up__6_2.Run(true);
  441.                 oBinder.Goto(oMain_Menu_1);
  442.                 oBinder.SetTransition(oVerticalComb, 30);
  443.             end;
  444.         
  445.     with
  446.         Enabled is true; Shown is true; 
  447.         X is 163; Y is 427; Width is 126; Height is 53;
  448.     end;
  449. end;
  450.  
  451.  
  452. object oArrow_Left_Inverse_6_9 is cPictureHandler
  453. with
  454.     Duration is -1;
  455.     Supplier is oS2_ALI_PIC;
  456.     Behavior is cDefaultBehavior
  457.     has
  458.         Offscreen(theTarget)
  459.             do
  460.                 theTarget.Show(false);
  461.                 theTarget.Enable(false);
  462.             end;
  463.         
  464.     with
  465.         Enabled is true; Shown is true; 
  466.         X is 381; Y is 441; Width is 51; Height is 40;
  467.     end;
  468. end;
  469.  
  470.  
  471. object oArrow_Right_Inverse_6_10 is cPictureHandler
  472. with
  473.     Duration is -1;
  474.     Supplier is oS2_ARI_PIC;
  475.     Behavior is cDefaultBehavior
  476.     has
  477.         Offscreen(theTarget)
  478.             do
  479.                 theTarget.Show(false);
  480.                 theTarget.Enable(false);
  481.             end;
  482.         
  483.     with
  484.         Enabled is true; Shown is true; 
  485.         X is 477; Y is 438; Width is 50; Height is 42;
  486.     end;
  487. end;
  488.  
  489.  
  490. object oExit_Inverse_6_11 is cPictureHandler
  491. with
  492.     Duration is -1;
  493.     Supplier is oS2_ETI_PIC;
  494.     Behavior is cDefaultBehavior
  495.     has
  496.         Offscreen(theTarget)
  497.             do
  498.                 theTarget.Show(false);
  499.                 theTarget.Enable(false);
  500.             end;
  501.         
  502.     with
  503.         Enabled is true; Shown is true; 
  504.         X is 528; Y is 439; Width is 112; Height is 42;
  505.     end;
  506. end;
  507.  
  508.  
  509. object oExplain_Inverse_6_12 is cPictureHandler
  510. with
  511.     Duration is -1;
  512.     Supplier is oS2_EXI_PIC;
  513.     Behavior is cDefaultBehavior
  514.     has
  515.         Offscreen(theTarget)
  516.             do
  517.                 theTarget.Show(false);
  518.                 theTarget.Enable(false);
  519.             end;
  520.         
  521.     with
  522.         Enabled is true; Shown is true; 
  523.         X is 291; Y is 438; Width is 87; Height is 43;
  524.     end;
  525. end;
  526.  
  527.  
  528. object oMenu_Inverse_6_13 is cPictureHandler
  529. with
  530.     Duration is -1;
  531.     Supplier is oS2_MNUI_PIC;
  532.     Behavior is cDefaultBehavior
  533.     has
  534.         Offscreen(theTarget)
  535.             do
  536.                 theTarget.Show(false);
  537.                 theTarget.Enable(false);
  538.             end;
  539.         
  540.     with
  541.         Enabled is true; Shown is true; 
  542.         X is 167; Y is 438; Width is 123; Height is 43;
  543.     end;
  544. end;
  545.  
  546.  
  547. object oQT_MOTO_MOV_6_16 is cMovieControllerHandler
  548. with
  549.     Supplier is oQT_MOTO_MOV;
  550.     Behavior is cDefaultBehavior
  551.     has
  552.     with
  553.         Enabled is true; Shown is true; 
  554.         X is 312; Y is 22; Width is 320; Height is 240;
  555.     end;
  556. end;
  557.  
  558.  
  559. object oQT_FINI_PIC_6_17 is cPictureHandler
  560. with
  561.     Duration is -1;
  562.     Supplier is oQT_FINI_PIC;
  563.     Behavior is cDefaultBehavior
  564.     has
  565.         MouseEnter(theTarget, theX, theY)
  566.             do
  567.                 theTarget.Show(false);
  568.             end;
  569.         
  570.         MouseLeave(theTarget, theX, theY)
  571.             do
  572.                 theTarget.Show(true);
  573.             end;
  574.         
  575.         MouseDown(theTarget, theX, theY)
  576.             do
  577.                 oClick_Sound__down__6_3.Run(true);
  578.                 oQT_MOTO_MOV_6_16.Goto(3746);
  579.                 oQT_MOTO_MOV_6_16.RunTo(4292);
  580.             end;
  581.         
  582.     with
  583.         Enabled is true; Shown is true; 
  584.         X is 220; Y is 105; Width is 69; Height is 30;
  585.     end;
  586. end;
  587.  
  588.  
  589. object oQT_LG1_PIC_6_18 is cPictureHandler
  590. with
  591.     Duration is -1;
  592.     Supplier is oQT_LG1_PIC;
  593.     Behavior is cDefaultBehavior
  594.     has
  595.         MouseEnter(theTarget, theX, theY)
  596.             do
  597.                 theTarget.Show(false);
  598.             end;
  599.         
  600.         MouseLeave(theTarget, theX, theY)
  601.             do
  602.                 theTarget.Show(true);
  603.             end;
  604.         
  605.         MouseDown(theTarget, theX, theY)
  606.             do
  607.                 oClick_Sound__down__6_3.Run(true);
  608.                 oQT_MOTO_MOV_6_16.Goto(660);
  609.                 oQT_MOTO_MOV_6_16.RunTo(1368);
  610.             end;
  611.         
  612.     with
  613.         Enabled is true; Shown is true; 
  614.         X is 170; Y is 295; Width is 55; Height is 25;
  615.     end;
  616. end;
  617.  
  618.  
  619. object oQT_LG2_PIC_6_19 is cPictureHandler
  620. with
  621.     Duration is -1;
  622.     Supplier is oQT_LG2_PIC;
  623.     Behavior is cDefaultBehavior
  624.     has
  625.         MouseEnter(theTarget, theX, theY)
  626.             do
  627.                 theTarget.Show(false);
  628.             end;
  629.         
  630.         MouseLeave(theTarget, theX, theY)
  631.             do
  632.                 theTarget.Show(true);
  633.             end;
  634.         
  635.         MouseDown(theTarget, theX, theY)
  636.             do
  637.                 oClick_Sound__down__6_3.Run(true);
  638.                 oQT_MOTO_MOV_6_16.Goto(1368);
  639.                 oQT_MOTO_MOV_6_16.RunTo(1676);
  640.             end;
  641.         
  642.     with
  643.         Enabled is true; Shown is true; 
  644.         X is 401; Y is 386; Width is 61; Height is 34;
  645.     end;
  646. end;
  647.  
  648.  
  649. object oQT_LG3_PIC_6_20 is cPictureHandler
  650. with
  651.     Duration is -1;
  652.     Supplier is oQT_LG3_PIC;
  653.     Behavior is cDefaultBehavior
  654.     has
  655.         MouseEnter(theTarget, theX, theY)
  656.             do
  657.                 theTarget.Show(false);
  658.             end;
  659.         
  660.         MouseLeave(theTarget, theX, theY)
  661.             do
  662.                 theTarget.Show(true);
  663.             end;
  664.         
  665.         MouseDown(theTarget, theX, theY)
  666.             do
  667.                 oClick_Sound__down__6_3.Run(true);
  668.                 oQT_MOTO_MOV_6_16.Goto(1676);
  669.                 oQT_MOTO_MOV_6_16.RunTo(2052);
  670.             end;
  671.         
  672.     with
  673.         Enabled is true; Shown is true; 
  674.         X is 354; Y is 338; Width is 65; Height is 35;
  675.     end;
  676. end;
  677.  
  678.  
  679. object oQT_STRT_PIC_6_21 is cPictureHandler
  680. with
  681.     Duration is -1;
  682.     Supplier is oQT_STRT_PIC;
  683.     Behavior is cDefaultBehavior
  684.     has
  685.         MouseEnter(theTarget, theX, theY)
  686.             do
  687.                 theTarget.Show(false);
  688.             end;
  689.         
  690.         MouseLeave(theTarget, theX, theY)
  691.             do
  692.                 theTarget.Show(true);
  693.             end;
  694.         
  695.         MouseDown(theTarget, theX, theY)
  696.             do
  697.                 oClick_Sound__down__6_3.Run(true);
  698.                 oQT_MOTO_MOV_6_16.Goto(0);
  699.                 oQT_MOTO_MOV_6_16.RunTo(660);
  700.             end;
  701.         
  702.     with
  703.         Enabled is true; Shown is true; 
  704.         X is 181; Y is 168; Width is 80; Height is 30;
  705.     end;
  706. end;
  707.  
  708.  
  709. object oQT_TNL_PIC_6_22 is cPictureHandler
  710. with
  711.     Duration is -1;
  712.     Supplier is oQT_TNL_PIC;
  713.     Behavior is cDefaultBehavior
  714.     has
  715.         MouseEnter(theTarget, theX, theY)
  716.             do
  717.                 theTarget.Show(false);
  718.             end;
  719.         
  720.         MouseLeave(theTarget, theX, theY)
  721.             do
  722.                 theTarget.Show(true);
  723.             end;
  724.         
  725.         MouseDown(theTarget, theX, theY)
  726.             do
  727.                 oClick_Sound__down__6_3.Run(true);
  728.                 oQT_MOTO_MOV_6_16.Goto(2052);
  729.                 oQT_MOTO_MOV_6_16.RunTo(3746);
  730.             end;
  731.         
  732.     with
  733.         Enabled is true; Shown is true; 
  734.         X is 218; Y is 251; Width is 72; Height is 26;
  735.     end;
  736. end;
  737.  
  738.  
  739. object oQT_HLP1_PIC_6_24 is cPictureHandler
  740. with
  741.     Duration is -1;
  742.     Supplier is oQT_HLP1_PIC;
  743.     Behavior is cDefaultBehavior
  744.     has
  745.     with
  746.         Enabled is false; Shown is false; 
  747.         X is 168; Y is 0; Width is 472; Height is 425;
  748.     end;
  749. end;
  750.  
  751.